🦆 payments migration

Took 9 minutes
This commit is contained in:
Kiran Hart 2023-02-28 23:12:07 -05:00
parent da1b20cc89
commit 2cb0a5961c
No known key found for this signature in database
GPG Key ID: 5F36C7BC79D3EBC3

View File

@ -0,0 +1,52 @@
/*
* Auction House
* Copyright 2018-2022 Kiran Hart
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package ca.tweetzy.auctionhouse.database.migrations;
import ca.tweetzy.core.database.DataMigration;
import java.sql.Connection;
import java.sql.SQLException;
import java.sql.Statement;
/**
* The current file has been created by Kiran Hart
* Date Created: September 08 2022
* Time Created: 9:13 a.m.
* Usage of any code found within this class is prohibited unless given explicit permission otherwise
*/
public class _17_PaymentsMigration extends DataMigration {
public _17_PaymentsMigration() {
super(17);
}
@Override
public void migrate(Connection connection, String tablePrefix) throws SQLException {
try (Statement statement = connection.createStatement()) {
statement.execute("CREATE TABLE " + tablePrefix + "payments (" +
"uuid VARCHAR(36) PRIMARY KEY, " +
"payment_for VARCHAR(36) NOT NULL, " +
"amount DOUBLE NOT NULL, " +
"time BigInt NOT NULL" +
")");
}
}
}