This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE subscriptions | |
( | |
id SERIAL PRIMARY KEY, | |
name TEXT NOT NULL, | |
requests INTEGER NOT NULL, | |
tokens INTEGER NOT NULL, | |
billing_start DATE NOT NULL, | |
billing_end DATE NOT NULL | |
); |